Carbon


QDTextProcPtr

Header: Quickdraw.h Carbon status: Supported

typedef void(* QDTextProcPtr) (
    SInt16 byteCount, 
    Ptr textBuf, 
    Point numer, 
    Point denom
);

You would declare your function like this if you were to name it MyQDTextCallback:

void MyQDTextCallback (
    SInt16 byteCount, 
    Ptr textBuf, 
    Point numer, 
    Point denom
);

© 2000 Apple Computer, Inc. (Last Updated 6/30/2000)